/* =====================================
   D SOFT TECHNO SYSTEMS
   Main Stylesheet
===================================== */


/* =====================
   COMMON
===================== */

:root{
    --primary:#2563EB;
    --heading:#0F172A;
    --secondary:#64748B;
    --white:#ffffff;
    --transition:.3s;
    --heading-font:'Poppins',sans-serif;
    --body-font:'Poppins',sans-serif;
}


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


body{

    font-family:var(--body-font);
    color:var(--secondary);
    background:var(--white);
    overflow-x:hidden;

}


.container{

    width:92%;
    max-width:1320px;
    margin:0 auto;

}


section{

    padding-left :40px;

}


h1,h2,h3,h4,h5{

    font-family:var(--heading-font);
    color:var(--heading);

}



.btn{

    display:inline-block;
    padding:14px 28px;
    background:var(--primary);
    color:#fff;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
    transition:var(--transition);

}



.btn:hover{

    background:#1D4ED8;
    transform:translateY(-3px);

}


/* =====================
   SECTION TITLE
===================== */

.section-title{

    text-align:center;
    margin-bottom:40px;

}


.section-title h2{

    font-size:42px;
    margin-bottom:15px;

}


.section-title p{

    max-width:700px;
    margin:auto;

}



/* =====================
   TOP BAR
===================== */


.top-bar{

    background:#0F172A;
    color:#fff;
    font-size:10px;
    padding:10px 0;

}



.topbar-container{

    display:flex;
    justify-content:space-between;
    align-items:center;

}



.top-left,
.top-right{

    display:flex;
    align-items:center;
    gap:25px;

}



.top-bar i{

    color:#60A5FA;
    margin-right:2px;

}



.social-icons{

    display:flex;
    gap:18px;

}


.social-icons a{

    color:#fff;
    transition:.3s;

}


.social-icons a:hover{

    color:#3B82F6;

}



/* =====================
   NAVBAR
===================== */

.navbar{

    position:sticky;

    top:0;

    z-index:999;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(12px);

    box-shadow:0 8px 25px rgba(15,23,42,.08);

    transition:.35s;
}
.nav-container{

    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}
/* ==========================
   PREMIUM LOGO
========================== */
.logo{
    display:flex;
    align-items:center;
    gap:12px;
    flex:1;
    min-width:420px;
}

.logo-box{

    width:80px;
    height:80px;

    background:#fff;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;
}
.logo-box img{
    width:55px;
    height:55px;
    object-fit:contain;
}

.logo:hover .logo-box{

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(37,99,235,.20);
}

.logo-text{

    display:flex;

    flex-direction:column;

    justify-content:center;
}

.logo-text h2{

    font-size:32px;
    color:#0F172A;
    font-weight:700;
    margin:0;
    line-height:1.1;
    white-space:nowrap;
}

.logo-text p{

    margin-top:6px;

    font-size:14px;

    color:#64748B;

    letter-spacing:.5px;

    font-weight:500;
}

.nav-menu{
    display:flex;
    gap:10px;
    margin-left:10px;
}

.nav-menu li{

    list-style:none;

}
.nav-menu a{

    color:#1E293B;

    padding:12px 18px;

    border-radius:30px;

    font-weight:600;

    transition:.3s;
}

.nav-menu a:hover{

    background:#EFF6FF;

    color:#2563EB;
}

.nav-menu a.active{

    background:#2563EB;

    color:#fff;
}

.quote-btn{

    background:linear-gradient(135deg,#2563EB,#1D4ED8);

    color:#fff;

    padding:15px 30px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 10px 25px rgba(37,99,235,.25);
}

.quote-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 16px 35px rgba(37,99,235,.35);
}

/*====================================
            PREMIUM HERO
====================================*/

.hero{

    position:relative;

    padding:140px 0 110px;

    background:linear-gradient(135deg,#F8FBFF 0%,#EEF5FF 45%,#E2ECFF 100%);

    overflow:hidden;
}

.hero::before{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    background:rgba(37,99,235,.08);

    border-radius:50%;

    top:-180px;

    right:-180px;
}

.hero::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:rgba(6,182,212,.08);

    border-radius:50%;

    bottom:-180px;

    left:-150px;
}

.hero-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

    position:relative;

    z-index:2;
}

/*----------------------*/

.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#EAF2FF;

    color:#2563EB;

    padding:12px 20px;

    border-radius:40px;

    font-size:15px;

    font-weight:600;

    margin-bottom:28px;
}

.hero-tag i{

    font-size:8px;
}

.hero-content h1{

    font-size:66px;

    line-height:1.08;

    font-weight:800;

    color:#0F172A;

    margin-bottom:28px;
}

.hero-content h1 span{

    color:#2563EB;
}

.hero-content p{

    font-size:19px;

    line-height:1.9;

    color:#64748B;

    max-width:650px;

    margin-bottom:40px;
}

/*----------------------*/

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:55px;
}

.primary-btn{

    background:linear-gradient(135deg,#2563EB,#1D4ED8);

    color:#fff;

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    text-decoration:none;

    transition:.35s;

    box-shadow:0 15px 35px rgba(37,99,235,.25);
}

.primary-btn:hover{

    transform:translateY(-4px);
}

.secondary-btn{

    border:2px solid #2563EB;

    color:#2563EB;

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    text-decoration:none;

    transition:.35s;
}

.secondary-btn:hover{

    background:#2563EB;

    color:#fff;
}

/*----------------------*/

.hero-stats{

    display:flex;

    gap:60px;
}

.hero-stats h2{

    color:#2563EB;

    font-size:42px;

    margin-bottom:5px;
}

.hero-stats span{

    color:#64748B;

    font-size:15px;

    font-weight:600;
}

/*==================================
            RIGHT SIDE
==================================*/

.hero-visual{

    position:relative;

    height:600px;
}

.main-circle{

    width:380px;

    height:380px;

    margin:auto;

    margin-top:70px;

    border-radius:50%;

    background:linear-gradient(135deg,#2563EB,#06B6D4);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:130px;

    box-shadow:0 35px 70px rgba(37,99,235,.28);

    animation:float 4s ease-in-out infinite;
}

.floating-card{

    position:absolute;

    background:#fff;

    padding:16px 24px;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    font-weight:600;

    color:#0F172A;

    display:flex;

    align-items:center;

    gap:12px;

    animation:float 5s ease-in-out infinite;
}

.floating-card i{

    color:#2563EB;

    font-size:22px;
}

.card1{

    top:70px;

    left:0;
}

.card2{

    right:0;

    top:150px;
}

.card3{

    bottom:140px;

    left:40px;
}

.card4{

    right:40px;

    bottom:70px;
}

/*================================*/

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0px);

}

}

/*================================*/

@media(max-width:992px){

.hero{

padding:110px 0 80px;

}

.hero-container{

grid-template-columns:1fr;

text-align:center;

}

.hero-content p{

margin:auto;

margin-bottom:35px;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

justify-content:center;

}

.hero-content h1{

font-size:48px;

}

.hero-visual{

height:500px;

margin-top:40px;

}

.main-circle{

width:300px;

height:300px;

font-size:100px;

}

}

@media(max-width:768px){

.hero-content h1{

font-size:38px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.hero-stats{

gap:25px;

}

.floating-card{

display:none;

}

}
.tech-card{

    position:absolute;
    background:#fff;
    padding:18px 25px;
    border-radius:12px;
    box-shadow:0 15px 35px rgba(0,0,0,.1);
    font-weight:600;

}


.tc1{
    top:30px;
    left:40px;
}


.tc2{
    top:80px;
    right:30px;
}


.tc3{
    bottom:100px;
    left:60px;
}


.tc4{
    bottom:40px;
    right:40px;
}



/* =====================
   STATS
===================== */


.stats{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:50px;

}



.stat{

    background:#fff;
    padding:25px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 15px 30px rgba(0,0,0,.08);

}



.stat h2{

    color:#2563EB;

}



/* =====================
   FOOTER SOCIAL
===================== */


.footer-social{

    display:flex;
    gap:15px;
    margin-top:25px;

}



.footer-social a{

    width:45px;
    height:45px;
    background:#2563EB;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.3s;

}



.footer-social a:hover{

    background:#0F172A;
    transform:translateY(-5px);

}

.logo,
.logo:hover,
.logo:visited {
    text-decoration: none;
}

.logo-text h2,
.logo-text p {
    text-decoration: none;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
}

/* Remove all underlines */

.logo,
.logo *,
.nav-menu a,
.quote-btn{

    text-decoration:none !important;
}

/*====================================
            ABOUT SECTION
====================================*/

.about{

    background:#fff;
    padding:100px 0;
}

.about-container{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

/*====================================
        ABOUT LEFT DESIGN
====================================*/

.about-image{

    display:flex;
    justify-content:center;
    align-items:center;
}

.about-box{

    width:470px;

    min-height:500px;

    background:linear-gradient(135deg,#2563EB,#06B6D4);

    border-radius:30px;

    position:relative;

    overflow:hidden;

    padding:45px;

    text-align:center;

    color:#fff;

    box-shadow:0 20px 60px rgba(37,99,235,.25);
}

.circle{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.08);
}

.circle1{

    width:220px;

    height:220px;

    top:-80px;

    right:-70px;
}

.circle2{

    width:180px;

    height:180px;

    left:-70px;

    bottom:-70px;
}

.about-icon{

    width:110px;

    height:110px;

    margin:auto;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:30px;

    backdrop-filter:blur(10px);
}

.about-icon i{

    font-size:48px;
}

.about-box h3{

    color:#fff;

    font-size:34px;

    margin-bottom:20px;
}

.about-box p{

    color:#F1F5F9;

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;
}

.tech-list{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:12px;
}

.tech-list span{

    background:rgba(255,255,255,.18);

    padding:10px 18px;

    border-radius:25px;

    font-size:14px;

    font-weight:600;

    backdrop-filter:blur(10px);

    transition:.3s;
}

.tech-list span:hover{

    background:#fff;

    color:#2563EB;
}


.section-tag{

    display:inline-block;

    background:#E0F2FE;

    color:#2563EB;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;
}

.about-content h2{

    font-size:46px;

    line-height:1.25;

    margin-bottom:25px;
}

.about-content p{

    font-size:18px;

    color:#64748B;

    line-height:1.9;

    margin-bottom:35px;
}

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:35px;
}

.feature{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

    color:#1E293B;
}

.feature i{

    color:#2563EB;

    font-size:18px;
}

/*====================================
        WHY CHOOSE US
====================================*/

.why-us{

    background:#F8FBFF;

    padding:100px 0;
}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;
}

.why-card{

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    transition:.35s;

    border:1px solid #E2E8F0;

    box-shadow:0 8px 30px rgba(0,0,0,.05);
}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(37,99,235,.18);

    border-color:#2563EB;
}

.why-icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:linear-gradient(135deg,#2563EB,#06B6D4);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:32px;
}

.why-card h3{

    margin-bottom:18px;

    font-size:24px;
}

.why-card p{

    color:#64748B;

    line-height:1.8;
}

/*====================================
            SERVICES
====================================*/

.services{

    padding:100px 0;

    background:#ffffff;
}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;
}

.service-card{

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    transition:.35s;

    border:1px solid #E5E7EB;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

    position:relative;

    overflow:hidden;
}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:#2563EB;

    transform:scaleX(0);

    transition:.35s;
}

.service-card:hover::before{

    transform:scaleX(1);
}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(37,99,235,.18);
}

.service-icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:20px;

    background:linear-gradient(135deg,#2563EB,#06B6D4);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;
}

.service-card h3{

    margin-bottom:15px;

    font-size:24px;
}

.service-card p{

    color:#64748B;

    line-height:1.8;
}
/*====================================
        TECHNOLOGIES
====================================*/

.technologies{

    padding:100px 0;

    background:#0F172A;
}

.technologies .section-title h2,
.technologies .section-title p{

    color:#fff;
}

.tech-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

    margin-top:60px;
}

.tech-item{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:35px 20px;

    text-align:center;

    transition:.35s;

    backdrop-filter:blur(10px);
}

.tech-item:hover{

    background:#2563EB;

    transform:translateY(-8px);
}

.tech-item img{

    width:58px;

    height:58px;

    object-fit:contain;

    margin-bottom:22px;

    transition:.35s;

    filter:brightness(0) invert(1);

}
.tech-item:hover img{

    transform:scale(1.12);

}

.tech-item h3{

    color:#fff;

    font-size:20px;

    font-weight:600;
}
/*====================================
        DEVELOPMENT PROCESS
====================================*/

.process{

    padding:100px 0;

    background:#F8FAFC;
}

.process-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;
}

.process-card{

    background:#fff;

    padding:45px 30px;

    border-radius:24px;

    position:relative;

    text-align:center;

    transition:.35s;

box-shadow:
0 10px 35px rgba(15,23,42,.05),
0 1px 2px rgba(15,23,42,.08);}

.process-card:hover{

    transform:translateY(-12px) scale(1.02);
    box-shadow:0 25px 45px rgba(37,99,235,.18);
}

.process-number{

    position:absolute;

    top:20px;

    right:20px;

    font-size:50px;

    font-weight:700;

    color:#E2E8F0;
}

.process-card i{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:linear-gradient(135deg,#2563EB,#06B6D4);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:36px;
}

.process-card h3{

    margin-bottom:18px;

    font-size:24px;
}

.process-card p{

    color:#64748B;

    line-height:1.8;
}
/*====================================
        COMPANY STATS
====================================*/

.company-stats{

    padding:90px 0;

    background:linear-gradient(135deg,#2563EB,#06B6D4);
}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.counter-box{

    text-align:center;

    color:#fff;
}

.counter-box i{

    font-size:50px;

    margin-bottom:20px;
}

.counter-box h2{

    font-size:52px;

    color:#fff;

    margin-bottom:10px;
}

.counter-box p{

    font-size:18px;

    color:#EAF4FF;
}
/*====================================
            PORTFOLIO
====================================*/

.portfolio{

    padding:100px 0;

    background:#ffffff;
}

.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;
}

.portfolio-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    border:1px solid #E2E8F0;
}

.portfolio-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(37,99,235,.18);
}

.portfolio-image{

    height:220px;

    background:linear-gradient(135deg,#2563EB,#06B6D4);

    display:flex;

    justify-content:center;

    align-items:center;
}

.portfolio-image i{

    font-size:70px;

    color:#fff;
}

.portfolio-content{

    padding:30px;
}

.portfolio-content h3{

    margin-bottom:15px;

    font-size:24px;
}

.portfolio-content p{

    color:#64748B;

    line-height:1.8;

    margin-bottom:25px;
}

.portfolio-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;
}

.portfolio-tags span{

    background:#EFF6FF;

    color:#2563EB;

    padding:8px 15px;

    border-radius:25px;

    font-size:14px;

    font-weight:600;
}

/*==================== SERVICES HERO ====================*/

.services-hero{
    background: linear-gradient(135deg,#0b1f47,#174ea6);
    color:#fff;
    padding:120px 0;
    text-align:center;
}

.services-hero-content{
    max-width:850px;
    margin:auto;
}

.services-hero h1{
    font-size:52px;
    font-weight:700;
    margin:20px 0;
    line-height:1.2;
}

.services-hero p{
    font-size:18px;
    line-height:1.8;
    color:#dbe7ff;
    margin-bottom:35px;
}

/*==================== SERVICES ====================*/

.services-page{
    padding:90px 0;
    background:#f8fbff;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.service-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    text-align:center;
    transition:.3s;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.service-icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:#174ea6;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:25px;
}

.service-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#0b1f47;
}

.service-card p{
    color:#666;
    line-height:1.8;
}

/*==================== WHY CHOOSE ====================*/

.why-services{
    padding:90px 0;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.why-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-card i{
    font-size:40px;
    color:#174ea6;
    margin-bottom:20px;
}

.why-card h3{
    margin-bottom:12px;
    color:#0b1f47;
}

.why-card p{
    color:#666;
    line-height:1.7;
}

/*==================== CTA ====================*/

.services-cta{
    padding:100px 0;
    background:#0b1f47;
    color:#fff;
    text-align:center;
}

.services-cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.services-cta p{
    max-width:700px;
    margin:auto;
    color:#dbe7ff;
    line-height:1.8;
    margin-bottom:35px;
}

/* HERO */

.services-hero{

padding:110px 0;

background:linear-gradient(135deg,#0f4c81,#0066cc);

text-align:center;

color:#fff;

}

.services-hero-content{

max-width:850px;

margin:auto;

}

.services-hero h1{

font-size:52px;

margin:20px 0;

}

.services-hero p{

font-size:18px;

line-height:1.8;

opacity:.9;

}


/* SERVICES */

.services-page{

padding:90px 0;

background:#f5f9ff;

}

.services-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:30px;

}

.service-card{

background:#fff;

padding:35px;

border-radius:18px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

}

.service-card:hover{

transform:translateY(-10px);

}

.service-icon{

width:80px;

height:80px;

margin:auto;

margin-bottom:20px;

border-radius:50%;

background:#0f4c81;

display:flex;

justify-content:center;

align-items:center;

font-size:32px;

color:#fff;

}

.service-card h3{

margin-bottom:15px;

font-size:24px;

}

.service-card p{

color:#666;

line-height:1.8;

}
/*==================================================
                TECHNOLOGIES PAGE
==================================================*/

/* Hero */

.technologies-hero{
    background:linear-gradient(135deg,#0b1f47,#174ea6);
    padding:120px 0;
    text-align:center;
    color:#fff;
}

.technologies-hero-content{
    max-width:850px;
    margin:auto;
}

.technologies-hero h1{
    font-size:50px;
    font-weight:700;
    margin:20px 0;
    line-height:1.2;
}

.technologies-hero p{
    font-size:18px;
    line-height:1.8;
    color:#dbe7ff;
}

/* Technology Sections */

.technology-section{
    padding:90px 0;
}

.light-bg{
    background:#f7faff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:38px;
    color:#0b1f47;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* Grid */
.tech-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top:40px;
}

/* Card */

.tech-card{
    background:#fff;
    border-radius:15px;
    padding:30px 25px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
    min-height:280px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.tech-card:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

/* SVG Images */

.tech-card img{
    width:60px;
    height:60px;
    object-fit:contain;
    display:block;
    margin:0 auto 20px;
}

.tech-card:hover img{

    transform:scale(1.08);

}

/* Title */

.tech-card h3{

    font-size:22px;

    color:#0b1f47;

    margin-bottom:12px;

    font-weight:600;

}

/* Description */

.tech-card p{

    color:#666;

    line-height:1.7;

    font-size:15px;

}
.tech-icon{
    width:70px;
    height:70px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 20px;
    overflow:hidden;
}

.tech-icon img{
    width:50px !important;
    height:50px !important;
    object-fit:contain;
}
/*==================================================
                CONTACT PAGE
==================================================*/

/* Hero */

.contact-hero{
    background:linear-gradient(135deg,#0b1f47,#174ea6);
    color:#fff;
    text-align:center;
    padding:110px 20px;
}

.contact-hero h1{
    font-size:52px;
    margin:20px 0;
    font-weight:700;
}

.contact-hero p{
    max-width:750px;
    margin:0 auto 35px;
    line-height:1.8;
    font-size:18px;
    color:#dce8ff;
}

/* Contact Cards */

.contact-info{
    padding:80px 0;
    background:#f7f9fc;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.contact-card{
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.contact-icon{
    width:75px;
    height:75px;
    background:#174ea6;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin:0 auto 20px;
}

.contact-card h3{
    color:#0b1f47;
    margin-bottom:12px;
}

.contact-card p{
    color:#666;
    line-height:1.7;
}

/* Contact Form */

.contact-section{
    padding:90px 0;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:50px;
    align-items:start;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-form h2{
    margin-bottom:30px;
    color:#0b1f47;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:15px 18px;
    border:1px solid #ddd;
    border-radius:10px;
    margin-bottom:20px;
    font-size:15px;
    font-family:inherit;
    outline:none;
    transition:.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    border-color:#174ea6;
    box-shadow:0 0 0 3px rgba(23,78,166,.15);
}

.contact-form textarea{
    resize:vertical;
}

/* Right Side */

.contact-content{
    background:#0b1f47;
    color:#fff;
    padding:40px;
    border-radius:20px;
}

.contact-content h2{
    margin-bottom:30px;
}

.feature-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.feature-item{
    background:rgba(255,255,255,.08);
    padding:16px 20px;
    border-radius:10px;
    font-size:16px;
}

/* Business Hours */

.business-hours{
    background:#f7f9fc;
    padding:80px 0;
}

.business-hours h2{
    text-align:center;
    margin-bottom:40px;
    color:#0b1f47;
}

.hours-grid{
    max-width:700px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.hours-grid div{
    padding:18px 25px;
    border-bottom:1px solid #eee;
}

.hours-grid div:nth-child(odd){
    font-weight:600;
    background:#fafafa;
}

/* Office */

.office-location{
    padding:90px 0;
    text-align:center;
}

.office-location h2{
    color:#0b1f47;
    margin-bottom:20px;
}

.office-location p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.map-placeholder{
    margin-top:45px;
    background:#eef4ff;
    padding:60px;
    border-radius:20px;
}

.map-placeholder i{
    font-size:55px;
    color:#174ea6;
    margin-bottom:20px;
}

/* FAQ */

.faq-section{
    background:#f7f9fc;
    padding:90px 0;
}

.faq-section h2{
    text-align:center;
    margin-bottom:45px;
    color:#0b1f47;
}

.faq-item{
    background:#fff;
    padding:25px 30px;
    margin-bottom:20px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
}

.faq-item h3{
    color:#174ea6;
    margin-bottom:12px;
}

.faq-item p{
    color:#666;
    line-height:1.7;
}

/* CTA */

.contact-cta{
    background:linear-gradient(135deg,#0b1f47,#174ea6);
    color:#fff;
    text-align:center;
    padding:90px 20px;
}

.contact-cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.contact-cta p{
    max-width:700px;
    margin:0 auto 35px;
    line-height:1.8;
    color:#dce8ff;
}

.success-message{
    background:#d4edda;
    color:#155724;
    border:1px solid #c3e6cb;
    padding:15px;
    margin-bottom:20px;
    border-radius:8px;
}

.error-message{
    background:#f8d7da;
    color:#721c24;
    border:1px solid #f5c6cb;
    padding:15px;
    margin-bottom:20px;
    border-radius:8px;
}

/* =====================
   FOOTER
===================== */

footer{
    background:#0F172A;
    color:#fff;
    padding:60px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
    margin-bottom:40px;
}

.footer-about .logo-text h2{
    color:#fff;
    font-size:26px;
    margin-bottom:10px;
}

.footer-about .logo-text p{
    color:#94A3B8;
    font-size:14px;
}

.footer-about p{
    color:#94A3B8;
    margin-top:15px;
    line-height:1.7;
    font-size:15px;
}

.footer-col h4{
    color:#fff;
    font-size:18px;
    margin-bottom:20px;
}

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col ul li a{
    color:#94A3B8;
    font-size:15px;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#fff;
}

.footer-social{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.footer-social a{
    width:45px;
    height:45px;
    background:#2563EB;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.3s;
}

.footer-social a:hover{
    background:#1D4ED8;
    transform:translateY(-5px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:25px;
    text-align:center;
    color:#94A3B8;
    font-size:14px;
}